home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP08 / PANELEX.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  591 b   |  17 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl\vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFORM("PSMain.cpp", Form1);
  6. USERES("PanelEx.res");
  7. //---------------------------------------------------------------------
  8. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10.     Application->Initialize();
  11.     Application->CreateForm(__classid(TForm1), &Form1);
  12.     Application->Run();
  13.  
  14.     return 0;
  15. }
  16. //---------------------------------------------------------------------------
  17.